home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002096C < prev    next >
Text File  |  1992-06-02  |  183b  |  14 lines

  1.  
  2.  
  3. /*
  4.         REMOVE: a subfunc to link to recursive main to 
  5.                 do wildcard file deletes.
  6. */
  7.  
  8. #include <stdio.h>
  9.  
  10. void subfunc(char *path)
  11. {
  12. remove(path);
  13. }
  14.